/*animation*/
.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}
@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);}
40%{-webkit-transform:rotate(-10deg);}
60%{-webkit-transform:rotate(5deg);}
80%{-webkit-transform:rotate(-5deg);}
100%{-webkit-transform:rotate(0);}
}
@-moz-keyframes swing{20%{-moz-transform:rotate(15deg);}
40%{-moz-transform:rotate(-10deg);}
60%{-moz-transform:rotate(5deg);}
80%{-moz-transform:rotate(-5deg);}
100%{-moz-transform:rotate(0);}
}
@-ms-keyframes swing{20%{-ms-transform:rotate(15deg);}
40%{-ms-transform:rotate(-10deg);}
60%{-ms-transform:rotate(5deg);}
80%{-ms-transform:rotate(-5deg);}
100%{-ms-transform:rotate(0);}
}
@keyframes swing{20%{transform:rotate(15deg);}
40%{transform:rotate(-10deg);}
60%{transform:rotate(5deg);}
80%{transform:rotate(-5deg);}
100%{transform:rotate(0);}
}
@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}
100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}
}
@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}
100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}
}
.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}

/*l-title*/
.l-title{padding:40px 0;text-align: center;}
	.l-title span{padding:0 60px 20px;border-bottom: solid 2px #eeeeee;}
	.l-title b{font-size: 32px;font-weight: 700;position: relative;padding-bottom: 18px;}
	.l-title b:after{content:'';width:100px;height: 3px;background: var(--zhu-color);position: absolute;left:50%;transform: translate(-50%);bottom:0;}
	@media(max-width: 576px){
		.l-title span{padding:0 0 20px;}
		.l-title b{font-size: 20px;}
	}
/*l-more*/
.l-more{width:150px;display: flex;flex-direction: row;justify-content: space-between;margin:15px 0;}
	.l-more span,.l-more i{height: 40px;line-height: 40px;display: block;background: var(--zhu-color);color: #fff;text-align: center;transition: all .5s}
	.l-more span{width:107px;font-size: 16px;}
	.l-more i{width:40px;font-size: 24px;transform: rotate(-90deg);}
	.l-more:hover span{border-radius: 10px;}
	.l-more:hover i{border-radius: 50%;}
/*l-banner*/
.l-banner{ text-align: center; position: relative; padding:200px 0 40px; background: url(../images/l-banner.jpg) no-repeat top center; background-size: 100% auto;background-attachment: fixed; }
	.l-banner b{ display: block; width: 100%; font-size:46px; color: #fff; font-weight: 400; line-height: 1;  }
	.l-banner p{ display: block; width: 100%; box-sizing: border-box; padding: 30px 0; text-align: center; line-height: 2; font-size: 14px; color: #fff;  }
	.l-banner span{ display: block; margin:0 auto; font-size: 32px; line-height: 1; color: #fff; font-weight: 200; }
	.l-banner small{ overflow: hidden; position: relative; display: block; width: 100%; animation:title_font_img_down 1.5s linear 0s infinite running; -webkit-animation:title_font_img_down 1.5s linear 0s infinite running; margin: 10px 0 1px; }
	.l-banner small span{ display: block; clear: both; font-size:20px; height: 16px; color: #fff; line-height: 1; }
	.l-banner small span + span{ position: relative; top:-7px; }
	@keyframes title_font_img_down{ 0%{ bottom:10px; opacity: 0.5;} 30%{ bottom:5px; opacity: 1;} 100%{ bottom:0px;  opacity: 0;} }
	@-webkit-keyframes title_font_img_down{ 0%{ bottom:10px; opacity: 0.5;} 30%{ bottom:5px; opacity: 1;} 100%{ bottom:0px;  opacity: 0;} }
	@media(min-width:992px){
		/*.l-banner{margin-top: 136px}*/
	}
	@media(max-width: 992px){
		.l-banner{height: 400px;/*margin-top: 77px;*/background-size:auto 100%;}
	}
	@media(max-width: 768px){
	  .l-banner{ padding:180px 0 40px; height: 400px}
	  .l-banner b{ font-size: 36px; }
	}
	@media(max-width: 576px){
	  .l-banner{ padding:80px 0 40px; /*margin-top: 58px;*/height: 250px}
	  .l-banner span{display: none;}
	  .l-banner b{ font-size: 30px; }
	  .l-banner p{ padding:20px 0px;font-size: 12px; }
	}

/*position*/
.position{width:100%;background: #f9f8f8;border-bottom: solid 1px #e0dfdf;}
	.position-left{display: flex;flex-direction: row;align-items: center;height: 59px;}
	.position-left i{color: var(--zhu-color);font-size:25px;margin-right: 10px;}
	.position-left p{color:#777777; }
	.position-left p a{color:#777777;}
	.position-left p a:hover{color: var(--zhu-color);}
	.position-right{display: flex;flex-direction: row;justify-content:flex-end;}
	.position-right a{color: #333333;padding:20px 15px;display:block;transition: all .5s}
	.position-right a:hover{background: var(--zhu-color);color: #fff;}
	@media(max-width: 1200px){
		.position-right a{padding:20px 10px;}
	}
	@media(max-width: 992px){
		.position-left{padding:10px 15px 0;}
		.position-right{flex-wrap: wrap;justify-content: flex-start;}
	}
	@media(max-width: 576px){
		.position-right{flex-wrap: wrap;justify-content: flex-start;padding: 10px 0}
		.position-right a{padding:5px 15px;}
	}
/*fenye*/
.de-page-mian{overflow: hidden; text-align: center; font-size: 0;  clear: both;}
	.de-page-mian .page-inner{display: inline-block; overflow: hidden;margin: 10px auto 35px;}
	.de-page-mian .page-inner a{display: block; float: left; min-width: 26px; padding: 0 5px; height: 36px; border: 1px solid #dddddd; background: #fff; text-align: center; line-height: 36px; font-size: 14px; color: #333; margin-right: 1px; overflow: hidden;width:auto;}
	.de-page-mian .page-inner a.active,
	.de-page-mian .page-inner a:hover{color: #fff; border-color:var(--zhu-color); background: var(--zhu-color);}
	.de-page-mian .page-inner a.prev{margin-right: 10px; background: #fff url(../images/prev.jpg) no-repeat center;}
	.de-page-mian .page-inner a.prev.on{background: #fff url(../images/prev-hover.jpg) no-repeat center;}
	.de-page-mian .page-inner a.prev:hover{background-color: #fff; border-color: #dddddd;}
	.de-page-mian .page-inner a.next{margin-left: 10px; margin-right: 15px; background: #fff url(../images/next.jpg) no-repeat center;}
	.de-page-mian .page-inner a.next.on{background: #fff url(../images/next-hover.jpg) no-repeat center;}
	.de-page-mian .page-inner a.next:hover{background-color: #fff; border-color: #dddddd;}
	.de-page-mian .page-inner a.page-btn{font-size: 12px; margin-right: 0; width: 63px; margin-left: 10px;display: none;}
	.de-page-mian .page-inner span{display: none; font-size: 12px; color: #333; float: left; line-height: 38px;}
	.de-page-mian .page-inner input{display: none; float: left; height: 36px; width: 36px; border: 1px solid #dddddd; text-align: center; line-height: 36px; font-size: 14px; color: #333; margin: 0 5px;}
/*prev_next*/
.prev_next{width:100%;padding:0 15px;}
	.prev_next>div{width:100%;padding:8px 0;border-bottom: dashed 1px #ddd;display: flex;flex-direction: row;align-items: center;}
	.prev_next>div:before{content:'\e834';font-family: 'iconfont';color: #fff;font-size: 16px;width:22px;height: 22px;border-radius: 50%;background: #666;display: block;text-align: center;line-height: 22px;margin-right:10px;}
	.prev_next>div a{color: #999;}
	.prev_next>div a:hover{color: var(--zhu-color);}
/*no-goods*/
.no-goods{padding:50px;text-align: center;}
/*list*/
.list{padding-bottom: 30px;}
/*about*/
/*about-section1*/
.about-section1{}
	.about-section1-bd{padding: 15px 0;}
	.about-section1 .txt b{font-size: 30px;}
	.about-section1 .txt .t1{font-size: 16px;color: #999999;position: relative;padding:5px 0 15px;}
	.about-section1 .txt .t1:after{width:75px;height: 3px;background: var(--zhu-color);content:'';position: absolute;left:0;bottom:0;}
	.about-section1 .txt .t2{line-height: 28px;color: #999999;-webkit-line-clamp:7;padding:0px 5px;margin:20px 0;}
	.about-section1 .txt .box{position: relative;}
	.about-section1 .txt .box:before,.about-section1 .txt .box:after{content:'';position: absolute;left:-20px;bottom:-20px;background: #eeeeee}
	.about-section1 .txt .box:before{width:5px;height: 60px;}
	.about-section1 .txt .box:after{width:60px;height: 5px;}
	.about-section1 .pic{margin-top:70px; }
	.about-section1 .pic img{z-index: 2;box-shadow: 12px -12px 0 var(--zhu-color)}
	.about-section1 .l-more{float:right; }
	@media(max-width: 1230px){
		.about-section1 .txt .box:before,.about-section1 .txt .box:after{display: none;}
	}
	@media(max-width: 1200px){
		.about-section1 .txt .t2{-webkit-line-clamp:7;}
	}
	@media(max-width: 992px){
		.about-section1 .txt b{font-size: 25px}
	}
	@media(max-width:768px){
		.about-section1-bd .row{flex-direction: column-reverse;}
		.about-section1 .pic{margin:15px 0 30px;text-align: center;}
	}
	@media(max-width:576px){
		.about-section1-bd .row{flex-direction: column-reverse;}
		.about-section1 .pic{margin:15px 0 30px;text-align: center;}
		.about-section1 .txt b{font-size: 20px;}
	}
/*about-section2*/
.about-section2{background: #eeeeee;}
	.about-section2 .l-title span{border-color: #ccc}
	.about-section2-bd{padding: 30px 15px 60px;}
	.about-section2 .swiper-slide{height: auto}
	.about-section2 .item{background: #fff;padding:30px 15px;display: flex;flex-direction:column;justify-content: center;align-items: center;height: 100%;transition: all .5s}
	.about-section2 .item i{color: var(--zhu-color);font-size: 50px;line-height: 1;margin-bottom: 15px;}
	.about-section2 .item b{color: #333333;font-size: 24px;padding:5px 0;}
	.about-section2 .item span{text-transform: uppercase;font-size: 16px;color:#646363;}
	.about-section2 .item p{line-height: 24px;color:#999999;padding:10px 0 0;text-align: center;height: 56px;}
	.about-section2 .item:hover{box-shadow: 0 0 15px #999;}


/*about-section3*/
.about-section3-bd{padding:15px 15px 30px;}
	.about-section3-bd .swiper-slide{border:solid 1px #eee;padding:3px;transition: all .5s}
	.about-section3-bd .swiper-slide .pic{padding-bottom:75%;width:100%;position: relative;overflow: hidden;}
	.about-section3-bd .swiper-slide .pic img{width:100%;height: 100%;position:absolute;object-fit: cover;transition: all .5s}
	.about-section3-bd .swiper-slide p{text-align: center;line-height: 40px;color: #333;transition: all .5s;font-size: 16px;}
	.about-section3-bd .swiper-slide:hover{border-color: var(--zhu-color);background: var(--zhu-color)}
	.about-section3-bd .swiper-slide:hover p{color: #fff;}
	.about-section3-bd .swiper-slide:hover .pic img{transform: scale(1.1,1.1);}

/*about-section4*/
.about-section4{position: relative;width:100%;overflow: hidden;}
	.about-section4 .bg{position: absolute;background: url(../images/licheng-bg.jpg) bottom center no-repeat;width:100%;height: 545px;top:0;left:0;}
	.about-section4 .bg:after{position:absolute;content:'';width:100%;height: 100%;background: var(--zhu-color);opacity: .3;}
	.about-section4 .l-title{position: relative;}
	.about-section4 .l-title b{color: #fff}
	.about-section4 .l-title span{border-color: #fff;}
	.about-section4 .l-title b:after{background: var(--pei-color);}
	.about-section4-bd{padding:30px 0;position: relative;}
	.about-section4-bd:before{content:'';position: absolute;height: 1px;background: #fff;top:93px;width:100%;}
	.licheng-hd{position: relative;z-index: 1;overflow: hidden;padding-bottom: 20px;width:85%;margin:0 auto;}
	.licheng-hd .swiper-slide{display: flex;flex-direction: column;justify-content: center;align-items: center;padding-bottom: 80px;}
	.licheng-hd .swiper-slide span{text-align: center;color: #fff;font-size: 18px;margin-bottom: 30px;}
	.licheng-hd .swiper-slide .circle{width:13px;height: 13px;background: #fff;opacity: 1;border-radius: 50%}
	.licheng-hd .swiper-slide-thumb-active{background: url(../images/licheng-jiao.png) center bottom no-repeat;}
	.licheng-hd .swiper-slide-thumb-active .circle{background: var(--zhu-color);position: relative;}
	.licheng-hd .swiper-slide-thumb-active .circle:before{position: absolute;content:'';border:solid 1px var(--zhu-color);width:26px;height: 26px;border-radius: 50%;top:50%;left:50%;transform: translate(-50%,-50%);}
	.licheng-hd .swiper-slide-thumb-active .circle:after{position: absolute;content:'';border:solid 1px var(--zhu-color);width:44px;height: 44px;border-radius: 50%;top:50%;left:50%;transform: translate(-50%,-50%);}
	.licheng-md{width:100%;position: relative;display:flex;flex-direction:row;justify-content: space-between; top:-128px;z-index: 2}
	.licheng-md .next,.licheng-md .prev{width:42px;height: 42px;background: rgba(255,255,255,.8);border-radius: 50%;text-align: center;font-size: 30px;color: var(--pei-color);transition: all .5s;cursor: pointer;line-height: 42px;}
	.licheng-md .next:hover,.licheng-md .prev:hover{background: var(--zhu-color);color: #fff;}
	.licheng-bd{overflow: hidden;margin-top: -80px;padding-bottom: 15px;}
	.licheng-bd .swiper-slide{padding-top: 16px;}
	.licheng-bd .swiper-slide .item{background: #fff;padding:45px;display: flex;flex-direction: row;justify-content: space-between;box-shadow: 0px 5px 10px #999;width:97%;margin:0 auto;}
	.licheng-bd .swiper-slide .item .left{width:400px;}
	.licheng-bd .swiper-slide .item .pic{width:100%;padding-bottom: 60%;position: relative;overflow: hidden;}
	.licheng-bd .swiper-slide .item .pic img{width:100%;height: 100%;object-fit: cover;position: absolute;}
	.licheng-bd .swiper-slide .item .right{width:calc(100% - 450px);}
	.licheng-bd .swiper-slide .item .right .t1{font-size: 18px;color:#333;}
	.licheng-bd .swiper-slide .item .right .t1 span{color: var(--zhu-color);font-size: 36px;}
	.licheng-bd .swiper-slide .item .right .t2{line-height: 26px;color:#999999;margin: 15px 0;-webkit-line-clamp:4;}
	@media(max-width: 992px){
		.licheng-bd .swiper-slide .item .left{width:300px;}
		.licheng-bd .swiper-slide .item .right{width:calc(100% - 350px);}
		.licheng-bd .swiper-slide .item .right .t1{line-height: 1}
		.licheng-bd .swiper-slide .item .right .t2{-webkit-line-clamp:2;}
	}
	@media(max-width:768px){
		.licheng-bd .swiper-slide .item{padding:15px;}
		.licheng-bd .swiper-slide .item .left{width:250px;}
		.licheng-bd .swiper-slide .item .right{width:calc(100% - 270px);}
		.licheng-bd .swiper-slide .item .right .t1{line-height: 1}
		.licheng-bd .swiper-slide .item .right .t2{-webkit-line-clamp:2;}
		.licheng-bd .swiper-slide .item .l-more{margin-bottom: 0}
	}
	@media(max-width:576px){
		.licheng-hd .swiper-slide{padding-bottom: 50px;}
		.licheng-bd .swiper-slide .item{flex-direction: column;}
		.licheng-bd .swiper-slide .item .left{width:100%}
		.licheng-bd .swiper-slide .item .right{width:100%;margin-top: 30px;}
		.licheng-md{top:-98px;}
	}
/*about-section5*/
.about-section5-bd{padding: 30px 15px;}
	.about-section5-bd .swiper-slide{background: #f2f2f3;transition: all .5s;}
	.about-section5-bd .swiper-slide .pic{width:100%;padding-bottom: 75%;position:relative;overflow: hidden;transition: all .5s;}
	.about-section5-bd .swiper-slide .pic img{width:100%;height: 100%;position: absolute;object-fit: cover;transition: all .5s;}
	.about-section5-bd .swiper-slide .pic:after{content:'\e680';width:20%;height: 20%;position: absolute;background:rgba(0,0,0,.7);opacity: 0;left:50%;top:50%;transform:translate(-50%,-50%);transition: all .5s;font-family: 'iconfont';color: #fff;text-align: center;font-size: 30px;line-height: 7}
	.about-section5-bd .swiper-slide .txt{padding:15px;overflow: hidden;text-align: center;}
	.about-section5-bd .swiper-slide .txt .t1{font-size: 18px;color:#333;}
	.about-section5-bd .swiper-slide .txt .t2{font-size: 14px;color:var(--pei-color);display: flex;flex-direction: row;justify-content: center;align-items: center;}.about-section5-bd
	.about-section5-bd .swiper-slide .txt .t2:before,.about-section5-bd .swiper-slide .txt .t2:after{content:'';width:13px;height: 1px;background: var(--pei-color);}
	.about-section5-bd .swiper-slide:hover{box-shadow: 0 0 10px #999}
	.about-section5-bd .swiper-slide:hover .txt .t1{color:var(--zhu-color);}
	.about-section5-bd .swiper-slide:hover .pic img{transform: scale(1.1,1.1);}
	.about-section5-bd .swiper-slide:hover .pic:after{width:100%;height: 100%;opacity: 1;left:50%;top:50%;transform:translate(-50%,-50%);}
	@media(max-width: 576px){
		.about-section5-bd .swiper-slide .txt .t2{display: none;}
		.about-section5-bd .swiper-slide .pic:after{line-height: 6}
	}
/*about-section6*/
.about-section6-bd{padding:30px 0px;}
	.about-section6-bd{text-align: center;}
	.about-section6-bd .right p{line-height:36px;font-size: 16px;float:left;width:100%;-webkit-line-clamp:6; }
	.about-section6-bd .right a{border:solid 1px #ddd;padding:10px 30px;font-size: 16px;display: block;float: right;margin-top:30px;color: #666;position: relative;overflow: hidden;transition: all .5s;}
	.about-section6-bd .right a:after{content:'';width:8px;;height: 8px;position: absolute;border-radius: 50%;top:3px;right:3px;background: var(--zhu-color);transition: all .5s;z-index: 0}
	.about-section6-bd .right a:hover{color: #fff;background: var(--zhu-color)}
	.about-section6-bd .right a:hover:after{background:#fff;}
	@media(max-width: 768px){
		.about-section6-bd .right{margin-top: 30px;}
	}
/*single*/
.single{padding:30px 15px;line-height: 260%;}

/*piclist*/
.piclist{padding:30px 0;}
	.piclist .row>div{margin-bottom: 30px}
	.piclist .item{display: flex;flex-direction: column;border-radius: 5px;overflow: hidden;transition: all .5s;border:solid 1px #eee;}
	.piclist .item .pic{width:100%;padding-bottom:75%;position: relative;overflow: hidden;}
	.piclist .item .pic img{width:100%;height: 100%;object-fit: cover;position: absolute;}
	.piclist .item .pic:after{width:0;height: 0;content:'';position: absolute;top:0;left:0;background: rgba(0,0,0,.8);transition: all .5s;border-radius: 50%;}
	.piclist .item .pic i{color:#fff;font-size: 50px;position: absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index: 1;opacity: 0;transition: all .5s}
	.piclist .item .txt{background: #f6f5f5;padding:15px;transition: all .5s}
	.piclist .item .t1{color: #333;font-size: 16px;font-weight: 700;transition: all .5s}
	.piclist .item .t2{color: #999999;font-size: 12px;margin:10px 0 15px;-webkit-line-clamp:2;transition: all .5s;height: 32px;}
	.piclist .item span{width:40px;height: 5px;background: url(../images/jiantou.png) left center no-repeat;display: block;transition: all 1s}
	.piclist .item:hover{box-shadow: 0 0 10px #999;}
	.piclist .item:hover .txt{background: var(--zhu-color)}
	.piclist .item:hover .txt .t1{padding-left: 10px;color:#fff;}
	.piclist .item:hover .txt .t2{color:#fff;}
	.piclist .item:hover .pic:after{width:200%;height:200%; left:-50%;top:-50%;}
	.piclist .item:hover .pic i{opacity: 1;}
	.piclist .item:hover span{margin-left:calc(100% - 40px);}
	@media(max-width: 576px){
		.piclist .row>div:nth-child(2n){padding-left: 7.5px;}
		.piclist .row>div:nth-child(2n-1){padding-right: 7.5px;}
	}
/*prolist*/
.prolist{}
	.prolist a{width:100%;height: 100%;display: block;padding:3px;position: relative;}
	.prolist .item{border-radius: 0;width:100%;box-shadow: 0 0 10px #999;padding:5px;}
	.prolist .item .pic img{transition: all .5s}
	.prolist .item:hover .pic img{transform: scale(1.1,1.1);}
	.prolist .item:hover .pic:after{width:0;height:0; }
	.xian-hx:after,.xian-hx:before,.xian-sx:after,.xian-sx:before{display:block; content:''; position:absolute; transition:all .5s ease; background:var(--pei-color);}
	.xian-hx:after,.xian-hx:before{ width:0px; height:3px;}
	.xian-hx:after{ top:0px; left:0px;}
	.xian-hx:before{ bottom:0px; right:0px;}
	.xian-sx:after{ top:0px; left:0px;}
	.xian-sx:before{ bottom:0px; right:0px;}
	.xian-sx:after,.xian-sx:before{ height:0px; width:3px;}
	.prolist .item:hover .xian-hx:after,.prolist .item:hover .xian-hx:before{ width:100%;}
	.prolist .item:hover .xian-sx:after,.prolist .item:hover .xian-sx:before{ height:100%;}
	@media(max-width: 576px){
		.prolist .row>div:nth-child(2n){padding-left:15px;}
		.prolist .row>div:nth-child(2n-1){padding-right: 15px;}
	}
/*proinfo*/
.proinfo{}
	.proinfo-hd{padding:45px 0;background: #f5f4f4;}
	.proinfo-hd .left{width:100%;overflow: hidden;}
	.proinfo-hd .swiper-slide .pic{width:100%;padding-bottom: 75%;position: relative;overflow: hidden;}
	.proinfo-hd .swiper-slide .pic img{width:100%;height: 100%;object-fit: cover;position: absolute;}
	.proinfo-hd .swiper-button-next, .proinfo-hd .swiper-button-prev{color: rgba(255,255,255,.4);}
	.proinfo-hd .swiper-button-next{right:15px;}
	.proinfo-hd .swiper-button-prev{left:15px;}
	.proinfo-hd .right .t1{font-size: 28px;color: #333;}
	.proinfo-hd .right .txt span{border-left:solid 2px var(--zhu-color);padding-left: 10px;font-size: 16px;color: var(--zhu-color);margin:20px 0;display: block;}
	.proinfo-hd .right .txt p{color: #999999;line-height: 26px;}
	.proinfo-hd .right .tags{width:100%;display: flex;flex-direction: row;color: #999999;justify-content: space-between;margin:30px 0;}
	.proinfo-hd .right .tags li{display: flex;flex-direction: row;align-items: center;}
	.proinfo-hd .right .tags i{font-size: 20px;line-height: 1;margin-right: 5px;}
	.proinfo-hd .right .btn{width:100%;}
	.proinfo-hd .right .btn a{color: #fff;padding:12px 50px;background: var(--pei-color);border-radius: 5px;display: block;float: left;transition: all .5s}
	.proinfo-hd .right .btn .con{display: flex;flex-direction: row;float: right;align-items: center;}
	.proinfo-hd .right .btn .con i{color: var(--pei-color);font-size: 45px;margin-right: 10px;line-height: 1}
	.proinfo-hd .right .btn .con .rt{text-align: left;}
	.proinfo-hd .right .btn .con .rt .t2{font-size: 14px;color: #666666;}
	.proinfo-hd .right .btn .con .rt .t3{font-size: 28px;color: var(--pei-color);font-weight: bold;line-height: 1}
	.proinfo-hd .right .btn a:hover{background: var(--zhu-color)}
	.proinfo-md{border:solid 1px #eee;padding:20px 0;}
	.proinfo-md .wrap{padding:0 15px;}
	.proinfo-md a{font-size: 18px;color: #333333;margin-right: 60px}
	.proinfo-md a:hover{color:var(--zhu-color);font-weight: bold;}
	.proinfo-bd{padding:30px 0;}
	.proinfo-bd .section{padding:0 15px;}
	.proinfo-bd .section .t1{border-left:solid 4px var(--zhu-color);font-size: 26px;color:#333333;line-height: 1;padding-left: 15px;}
	.proinfo-bd .section .content{line-height: 260%;padding:30px 0;}
	.case-relation{padding:45px 0 30px;}
	.case-relation .swiper-slide{width:300px;height: 225px;background-position: center;background-size: cover;}
	.case-relation p{width:100%;height: 100%;color: #fff;background: rgba(0,0,0,.7);font-size: 16px;text-align: center;line-height: 225px;opacity: 0;transition: all .5s}
	.case-relation .swiper-slide-active p{opacity: 1}
	.proinfo-bd .section3{padding:30px 15px;}
	.proinfo-bd .section3 .wrapp{background: url(../images/message-bg.jpg) top center no-repeat;padding:55px 15px 40px;margin-top: 30px;}
	.proinfo-bd .section3 .txt .t2{font-size: 22px;color: #fff;font-weight: bold;padding:15px 0;border-bottom: solid 1px #a3a2a2;}
	.proinfo-bd .section3 .txt .t2{font-size: 22px;color: #fff;font-weight: bold;padding:15px 0;}
	.proinfo-bd .section3 .txt .t3{color: #fff;line-height: 28px;padding:15px 0;}
	.proinfo-bd .section4{margin:15px 0 45px;}
	.proinfo-bd .section4 .row>div{margin-top: 30px;}
	.proinfo-bd .section4 .item{padding:30px;background: #794844;display: flex;flex-direction: row;justify-content: space-between;height: 100%;}
	.proinfo-bd .section4 .item i{width:74px;height: 74px;border-radius: 50%;background: #fff;font-size: 45px;display: block;text-align: center;line-height: 74px;color: #794844}
	.proinfo-bd .section4 .item .txt{width:calc(100% - 90px);}
	.proinfo-bd .section4 .item .txt b{color:#fff;font-size: 26px;}
	.proinfo-bd .section4 .item .txt .t2{color:#fff;font-size:18px;position: relative;padding:15px 0;}
	.proinfo-bd .section4 .item .txt .t2:after{position: absolute;content:'';width:46px;height: 2px;background: #fff;bottom:0;left:0;}
	.proinfo-bd .section4 .item .txt .t3{color: rgba(255,255,255,0.5);line-height: 30px;margin-top: 15px;}
	.proinfo-bd .section4 .row>div:nth-child(2) .item{background: #445879;color: #445879}
	.proinfo-bd .section4 .row>div:nth-child(3) .item{background: #34978f;color: #34978f}
	.proinfo-bd .section4 .row>div:nth-child(4) .item{background: #dd961a;color: #dd961a}
	@media(max-width: 992px){
		.proinfo-hd .right .tags{display: none}
		.proinfo-hd .right .btn .con{display: none;}
		.proinfo-hd .right .btn{margin-top: 15px;}
		.proinfo-bd .section3 .wrapp{background-size: auto 100%}
		.proinfo-bd .section3 .row{flex-direction: column-reverse;}
	}
	@media(max-width: 768px){
		.proinfo-hd .right .t1{margin-top: 15px;}
		.proinfo-hd .right .tags{display: flex}
		.proinfo-hd .right .btn .con{display: flex;}
	}
	@media(max-width: 576px){
		.proinfo-hd .right .tags li{flex-direction: column;}
		.proinfo-hd .right .btn{display: flex;flex-direction: column;}
		.proinfo-hd .right .btn .con{margin-top: 15px;}
		.proinfo-md a{margin-right: 15px;}
		.proinfo-bd .section .t1{font-size: 24px}
		.proinfo-bd .section3 .wrapp{margin-left:-15px;margin-right: -15px;width:calc(100% + 30px);padding:30px 0 15px;}
		.proinfo-bd .section4 .item{padding:15px;}
		.proinfo-bd .section4 .item .txt .t2{font-size: 16px;}
		.proinfo-bd .section4 .item .txt .t3{line-height: 26px;}

	}

/*message*/
.message{background: #fff;padding:30px;}
	.message .tips{font-size: 18px;color: #999999;margin-bottom:15px;}
	.message span{color: red;}
	.message ul{display: flex;flex-direction: row;justify-content: space-between;margin-top: 15px;}
	.message ul li{width:50%;}
	.message ul li input{border:solid 1px #eee;padding:15px;margin-left:5px;width:90%;}
	.message ul li select{width:90%;height: 53px;color: #999999;border:solid 1px #eee;padding-left: 15px}
	.message .md li .yzm1{width:50%;}
	.message .md li img{width:40%;height: 100%}
	.message .bd textarea{width:98%;border:solid 1px #eee;padding:15px;color: #999}
	.message .submit{padding:8px 60px;font-size: 20px;background: var(--zhu-color);color: #fff;border-radius: 10px;margin:15px auto 0;}
	@media(max-width: 576px){
		.message ul{flex-wrap:wrap;margin-top: 0}
		.message ul li{width:100%;margin-bottom:15px;}
		.message .bd textarea{width:96%;}
	}
/*proindex*/
/*protype*/
.protype{padding:30px 0;overflow: hidden;}
	.protype .swiper-slide{background:var(--zhu-color);border-radius: 5px;text-align:center;padding:15px 15px 15px;width:240px;box-sizing: border-box;transition:all .5s;}
	.protype .swiper-slide i{font-size:40px;display: block;color: #fff;line-height: 1}
	.protype .swiper-slide p{font-weight:bold;font-size: 18px;color: #fff;}
	.protype .swiper-slide:hover{background:var(--pei-color);box-shadow:0 0 20px 0 var(--zhu-color);}
	.protype .swiper-slide:hover i{animation: swing 1s;}
	@media(max-width: 576px){
		.protype{padding:0;}
		.protype .swiper-slide{padding:5px;}
		.protype .swiper-slide p{font-size: 14px;}
	}
/*proindex*/
.proindex{margin: 30px 0;}
	.floor{background: #f9f8f8;padding:60px 0;}
	.floor:nth-child(2n){background: #fff}
	.floor .hd .left span{width:64px;height: 64px;text-align: center;line-height: 64px;background: var(--zhu-color);color: #fff;font-size: 34px;display: block;float: left;margin-right: 10px}
	.floor .hd .left .txt b{font-size: 30px;font-weight: bold;color: var(--zhu-color);margin:0 0 5px 0;line-height: 1.2}
	.floor .hd .left .txt p{font-size: 16px;margin-top: 5px}
	.floor .hd a{width:105px;height: 40px;line-height: 40px;text-align: center;border:solid 1px var(--zhu-color);color: var(--zhu-color);display: block;float: right;transition: all .5s;border-radius: 5px;margin-left: 10px;}
	.floor .hd a:hover{background: var(--pei-color);border-color:var(--pei-color);color: #fff;}
	.floor .bd{padding:40px 0 0;overflow:hidden;}
	@media(max-width: 576px){
		.floor{padding:30px 0;}
		.floor .hd a{width:60px;height: 20px;line-height: 20px;}
		.floor .hd .left .txt b{font-size: 18px;line-height: 1.5;}
		.floor .hd .left .txt p{display: none;}
		.floor .hd .left span{width:30px;height: 30px;line-height: 30px;font-size:16px;}

	}

/*simg*/
.simg{ width: 100%; padding-bottom: 75%;overflow: hidden; position: relative;border-radius: 5px }
	.simg img,.simg img{ width: 100%; height: 100%; object-fit: cover; transition: all .5s;position: absolute; }
	.simg > a,.simg > a{ display: block; position:absolute; left: 0; bottom:0; width: 100%; box-sizing: border-box; padding:35px 15px 5px;  }
	.simg > a b,.simg > a b{ display: block; width: 50%; overflow: hidden; font-size: 18px; color: #fff; position: relative; z-index: 3; transition: .4s; opacity: 1; }
	.simg > a::before,.simg > a::before{ content: ""; display: block; width: 130%; height: 200px; background: var(--zhu-color); transform: rotate(11deg); position: absolute; left: -30px; top:38px; transition: .4s; opacity: 0.8}
	.simg > div, .simg > div{ width: 100%; height: 100%; position: absolute; top:-100%; transition: .4s; background: rgba(0, 0, 0, .6); display: flex; align-items: center; justify-content: center; flex-flow: column; }
	.simg > div a,.simg > div a{ padding:5px 30px; border:1px solid #fff; color: #fff; font-size: 14px; border-radius: 3px; transition: all .5s; }
	.simg > div a span, .simg > div a span{ font-size: 14px; margin-right: 6px; }
	.simg > div a + a, .g_list .g_li .simg > div a + a{ margin-top: 12px; }
	.simg > div a:hover, .simg >div a:hover{ transition: all .5s; background: var(--pei-color); border-color: var(--pei-color); }
	.simg > div a + a:hover,.simg > div a + a:hover{ transition: all .5s; background:var(--pei-color); border-color:var(--zhu-color); }
	.simg:hover img, .simg:hover img{ transform: scale(1.05); transition: .4s; }
	.simg:hover > div,.simg:hover > div{ transition: .4s; top:0; }
	.simg:hover > a b,.simg:hover > a b{ transition: .4s; opacity: 0; }
	.simg:hover > a::before,.simg:hover > a::before{ transition: .4s; top:60px; transform: rotate(0deg); }
	@media(max-width: 576px){
		.simg > div a, .simg > div a{padding:5px;}
		.simg > a b, .simg > a b{font-size: 12px}
	}
/*qynews*/
.qynews{margin:30px 0 0;}
	.qynews a{ display: block; overflow: hidden; border:1px solid #e7e7e7; box-sizing: border-box; transition: all .5s;border-radius: 5px }
	.qynews a .pic{ width:100%;padding-bottom: 75%;overflow: hidden;position: relative; transition: all .5s; }
	.qynews a .pic img{ width: 100%; height: 100%; object-fit: cover; position: absolute;transition: all .5s; }
	.qynews a .txt{ width: 100%; padding:25px; overflow: hidden; height: 120px; transition: all .5s; box-sizing: border-box; }
	.qynews a .txt .t1{ font-weight: normal; display: block; width: 100%; color: #010101; font-size: 18px; margin-bottom: 20px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;  transition: all .5s;}
	.qynews a .txt .t2{ font-size: 14px; color: #909090; transition: all .5s; }
	.qynews a .txt .t3{  line-height: 30px; color: #434343; font-size: 14px; margin-top: 15px; opacity: 0; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; line-height: 1.5;transition: all .5s; }
	.qynews a:hover img{ transform: scale(1.05); }
	.qynews a:hover .pic{  margin-top: -80px; }
	.qynews a:hover .txt{background: var(--zhu-color); height: 200px; }
	.qynews a:hover .txt .t1, .qynews a:hover .txt .t2, .qynews a:hover .txt .t3{ color: #fff; opacity: 1; }
	@media(max-width: 576px){
		.qynews a .txt{padding:15px;height: 100px;}
	}
/* hynews */
.hynews{ overflow: hidden; margin:20px 0; padding:40px 0; background: #F6F6F6; }
	.hynews .news_img{ display: block; width: 100%; overflow: hidden;  }
	.hynews .news_img .img{ width: 100%; height: 240px; overflow: hidden; background: #e4e4ec; }
	.hynews .news_img .img img{ width: 100%; height: 100%; object-fit: cover; transition: all .5s; }
	.hynews .news_img .txt{ overflow: hidden; padding:20px 0; }
	.hynews .news_img .txt b{ margin-bottom: 20px; display: block; width: 100%; font-size: 20px; color: #535353;font-weight: normal; transition: all .5s; }
	.hynews .news_img .txt>div{display: flex;flex-direction: row;}
	.hynews .news_img .txt span{ display: inline-block; text-align: left; float: left; padding-right: 20px; margin-right: 20px; border-right: 1px solid #e8e8e8; position: relative; }
	.hynews .news_img .txt span::after{ content: ""; display: inline-block; width: 1px; height: 0; position: absolute; right: 0; top:0; background:var(--zhu-color);transition: all .5s }
	.hynews .news_img .txt span small{ font-size: 22px; color: #444; display: block; }
	.hynews .news_img .txt span i{ font-size: 16px; color: #999; display: block; }
	.hynews .news_img .txt p{ width:calc(100% - 95px); color: #979797; font-size: 14px; line-height: 26px; -webkit-line-clamp: 2;  }
	.hynews .news_img:hover img{ transform: scale(1.1) rotate(-2deg); }
	.hynews .news_img:hover b{ color: var(--zhu-color); font-weight: bold; padding-left: 10px; }
	.hynews .news_img:hover span, .hynews .news_img:hover span i, .hynews .news_img:hover p{ transition: all .5s; color: #333; }
	.hynews .news_img:hover span::after{ transition: all .5s; height: 100%; }
	.hynews .list{ display: block; overflow: hidden; border-bottom:1px solid #eaeaea; padding-bottom: 0}
	.hynews .list a{ display: flex; padding:32px 0; overflow: hidden; border-top:1px solid #eaeaea;flex-direction: row; }
	.hynews .list a span{ display: inline-block; text-align: left; padding-right: 20px; margin-right: 20px; border-right: 1px solid #e8e8e8; position: relative;transition: all .5s; }
	.hynews .list a span::after{ content: ""; display: inline-block; width: 1px; height: 0; position: absolute; right: 0; top:0; background: var(--zhu-color);transition: all .5s }
	.hynews .list a span small{ font-size: 22px; color: #444; display: block; text-align: left;  transition: all .5s;}
	.hynews .list a span i{ font-size: 16px; color: #999; display: block; text-align: left; transition: all .5s; }
	.hynews .list a .txt{ width: calc(100% - 95px); overflow: hidden; }
	.hynews .list a .txt b{ margin-bottom: 7px; display: block; width: 100%; font-size: 20px; color: #535353; font-weight: normal;transition: all .5s; }
	.hynews .list a .txt p{ text-indent: -2em; color: #979797; font-size: 14px; line-height: 26px;  -webkit-line-clamp: 1; transition: all .5s;}
	.hynews .list a:hover b{  color: var(--zhu-color); font-weight: bold; padding-left: 10px; }
	.hynews .list a:hover p{  color: #333; padding-left: 10px; }
	.hynews .list a:hover small, .hynews .list a:hover i{   color: var(--zhu-color); }
	.hynews .list a:hover span::after{  height: 100%; }
/* newslist */
.newslist{ overflow: hidden; width: 100%;padding:30px 0; }
	.newslist li + li a{ border-top:1px solid #e9e9e8; }
	.newslist a{ display: flex; padding:20px 0; width: 100%; flex-direction: row;justify-content: space-between;}
	.newslist a .imgbox{ width: 270px; }
	.newslist a .img{width:100%;padding-bottom: 65%; overflow: hidden; position: relative; }
	.newslist a .img img{ width: 100%; height: 100%; object-fit: cover;position: absolute; transition: all .5s; }
	.newslist a .img span{ position: absolute; left: 0; top:0; display: flex; width: 100%; height: 100%; background: rgba(0, 0, 0, .6); color: #fff; font-size: 32px; align-items: center; justify-content: center; opacity: 0; }
	.newslist a .txt{ overflow: hidden; width:calc(100% - 290px); }
	.newslist a .txt b{ display: block; font-size: 18px; color: #1E1E1E; font-weight: normal; margin:12px 0 5px; transition: all .5s;  }
	.newslist a .txt p{font-size: 14px; color: #777; line-height: 24px; overflow: hidden; -webkit-line-clamp: 2; transition: all .5s; }
	.newslist a .txt .clamp{margin-top: 10px;}
	.newslist a .txt small{ margin-top: 15px; display: inline-block; padding-left: 30px; font-size: 14px; color: #393939; position: relative; transition: all .5s; }
	.newslist a .txt small::before{ content: ""; display: inline-block; width: 20px; height: 3px; background: var(--zhu-color); position:absolute; left: 0; top:9px; transition: all .5s; }
	.newslist a:hover b{ color: var(--zhu-color); font-weight: bold; }
	.newslist a:hover .img span{ opacity: 1; }
	.newslist a:hover img{ transform: scale(1.05) rotate(-5deg); }
	.newslist a:hover small{ padding-left: 60px; }
	.newslist a:hover small::before{ width: 50px;  }
	@media(max-width: 768px){
		.newslist a .imgbox{ width: 240px; }
		.newslist a .txt{width:calc(100% - 260px); }
	}
	@media(max-width: 576px){
		.newslist a{flex-direction: column;}
		.newslist a .imgbox{ width: 100% }
		.newslist a .txt{ width:100% }
	}
/*newsinfo*/
.newsinfo{padding:30px 0;}
	.page_tit{ position: relative; padding-bottom: 20px; text-align: center;border-bottom: dashed 1px #ddd; }
	.page_tit b{ display: inline-block; font-size: 24px; color: #333; margin-bottom: 30px; }
	.page_tit small{ text-transform: uppercase; display: inline-block; color: rgba(51,51,51,.42); margin-left: 25px; font-size: 22px; }
	.page_tit::before{ content: ""; display: inline-block; width: 60px; height: 3px; background: var(--zhu-color); position: absolute; left:50%; margin-left: -30px; bottom:65px; border:0; }
	.page_tit .meta{ font-size: 14px; line-height: 1; color: #393939;display: flex;flex-direction: row;align-items: center;justify-content: center; margin-top: 15px}
	.page_tit .meta span{ display: inline-block; margin-right: 8px; color: #393939; font-size: 20px; }
/*contact*/
.contact{}
	.contact-hd{padding:30px 0;}
	.contact-hd .left{background: #f7f7f7;padding:30px;}
	.contact-hd .left li{display: flex;flex-direction: row;padding:10px 0;height: 100%}
	.contact-hd .left li i{font-size: 50px;color: var(--zhu-color);}
	.contact-hd .left li .txt{margin-left: 15px;display: flex;flex-direction: column;justify-content: center;}
	.contact-hd .left li .txt b{font-size:20px; font-weight: normal;}
	.contact-hd .left li .txt p{ color: #999;}
	.contact-hd .right{display: flex;flex-direction: row;padding:30px;background: #f7f7f7;height: 100%;}
	.contact-hd .right .f-ewm{width:150px;height: 150px;}
	.contact-hd .right .txt{margin-left: 15px;}
	.contact-hd .right .txt b{color:#333;font-size: 24px;}
	.contact-hd .right .txt .t1{color:#999999;}
	.contact-hd .right .txt .t2{color:#999999;margin-top: 10px;}
	.contact-hd .right .txt .share{padding:10px 0;}
	#dituContent{border:1px solid #dedede; height:400px; overflow:hidden;}
	.contact-bd{background: url(../images/message-bg.jpg) top center no-repeat;padding:55px 15px 40px;margin-top: 30px;}
	.contact-bd .txt .t2{font-size: 22px;color: #fff;font-weight: bold;padding:15px 0;border-bottom: solid 1px #a3a2a2;}
	.contact-bd .txt .t2{font-size: 22px;color: #fff;font-weight: bold;padding:15px 0;}
	.contact-bd .txt .t3{color: #fff;line-height: 28px;padding:15px 0;}
	@media(max-width: 992px){
		.contact-hd .right{margin-top:30px;height: auto;}
		.contact-bd{background-size: auto 100%}
	}
	@media(max-width: 576px){
		.contact-hd .left{padding:15px;}
		.contact-hd .left li i{font-size: 40px;}
		.contact-hd .left li .txt b{font-size: 18px;}
		.contact-hd .left li .txt p{font-size:12px;}
		.contact-hd .right{margin-top:30px;height: auto;padding:15px;}
		.contact-hd .right .f-ewm{width:90px;height: 90px;}
		.contact-hd .right .txt{margin-left: 10px;}
		.contact-hd .right .txt b{font-size: 18px;}
		.contact-hd .right .txt .t1,.contact-hd .right .txt .t2{font-size: 12px;}
		.contact-hd .right .txt .share{padding:0;}
		.contact-bd{margin-left:-15px;margin-right: -15px;width:calc(100% + 30px);padding:30px 15px 15px;}
		.contact-bd .row{flex-direction: column-reverse;}
	}

/*share*/
.share a{width:32px;height: 32px;display: inline-block;}
	.share .bds_weixin{background-image:url('../images/css-bg.png');background-position:-13px -7px !important;}
	.share .bds_tsina{background-image:url('../images/css-bg.png');background-position:-57px -7px !important;}
	.share .bds_sqq{background-image:url('../images/css-bg.png');background-position:-101px -7px !important;}
	.share .bds_qzone{background-image:url('../images/css-bg.png');background-position:-146px -7px !important;}
	#bdshare_weixin_qrcode_dialog{height: 320px!important}

/*job*/
.jobs-list{margin-bottom: 30px;}
	.jobs-list li{width:100%;margin-top: 30px;}
	.jobs-list a{display:block;width:100%;background:#fff;box-shadow:0px 1px 7.09px 0.91px rgba(125,125,125,0.5);border-radius:5px;padding:1% 0 3% 0}
	.jobs-list a .son{width:95%;overflow:hidden;margin:0 auto;}
	.jobs-list a .t1{padding:2% 0;border-bottom:1px solid #eee}
	.jobs-list a .t1 .t1l{float:left;font-size:20px;font-weight:bold;color:#333;}
	.jobs-list a .t1 .t1r{float:right;color:#666;text-decoration:underline;font-size:14px;padding-left:38px;line-height:25px;}
	.jobs-list a .t1 .t1r i{font-size: 24px;color: var(--zhu-color);margin-right: 15px;}
	.jobs-list a .son .con{margin-top:2.5%;height:250px;overflow-y:scroll;line-height: 2.6}
	.jobs-list a .son .con p{color:#666;padding:3px 0;font-size:14px;line-height:1.6;text-indent:0!important;}
	.jobs-list a .son .con::-webkit-scrollbar{width:3px;height:3px;}
	.jobs-list a .son .con::-webkit-scrollbar-track{box-shadow:inset 0 0 3px transparent;background:#f8f8f8;border-radius:3px;}
	.jobs-list a .son .con::-webkit-scrollbar-thumb{border-radius:3px;background:#bbb;}
	.jobs-list a .t1 .t1r:hover{color:#333;}
	
/*应聘表单*/
.fu-job{position:fixed;width:100%;height:100%;background:rgba(0,0,0,0.6);left:0;top:0;display:none;z-index:10000;}
	.fu-job .job-son{width:100%;height:100%;display:flex;align-items:center;}
	#jobform{background:#fff;padding:40px 30px 30px 30px;width:500px;margin:0 auto;position: relative;}
	#jobform .jobclose{position:absolute;right:0px;top:0;background:var(--zhu-color);color:#fff;display:inline-block;padding:2px 10px;font-size:14px;cursor:pointer;}
	#jobform .faqline{padding:6px 0;border-bottom:0px solid #eee;}
	#jobform .faqline .faqtit{width:20%;height:40px;line-height:40px;float:left;background:#fff;text-align:left;font-size:15px;border-radius:2px;}
	#jobform .faqline .input{text-indent:8px;width:80%;outline:none;height:40px;box-sizing:border-box;border:1px solid #ddd;float:left}
	#jobform textarea{width:80%;outline:none;height:100px;box-sizing:border-box;border:1px solid #ddd;float:left;;border-radius:2px;padding:10px 8px}
	#jobform .input:focus{border-color:#1d7df5;}
	#jobform textarea:focus{border-color:#1d7df5;}
	/*#jobform input:hover{border-color:#c0121b;}
	*/
	/*#jobform textarea:hover{border-color:#c0121b;}
	*/
	#jobform .faqline .input1{width:120px;float:left;}
	#jobform .code img{display:block;float:left;height:40px;margin-left:0px;}
	#jobform .code .tip{display:block;float:left;color:red;font-size:14px;}
	#jobform button{width:100px;height:38px;background:var(--pei-color);color:#fff;display:block;-webkit-transition:all 0.4s;-moz-transition:all 0.4s;-ms-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s;cursor:pointer;}
	#jobform button:hover{background:var(--zhu-color);}
